Skip to main content

Backend Installation

Firebase Installation Process

  • First if you are not login to firebase account, you've to login to firebase account. Firebase Official Page
  • Then create a firebase project to give your requirement data.

Installation

  • After completing the process, go to Project Settings then nevigate to Service accounts
  • And generate a new private key for the project.

Installation

  • Now back to the backend project folder, create a new file into the utils folder.
  • And rename the file name as firebase-service.json and paste the generated private key into the file.

Installation

Local Backend Installation Process

Step 1:

  • First you need to navigate to the backend project folder, then open the terminal and run: yarn install

Installation

Step 2:

  • Now, build the project by running the following command: yarn start:dev

Installation

Step 3:

  • Finally, start the backend server locally with: yarn start:dev

Installation

Initially, it will show Database connection failed after you successfully set up your frontend, the .env file will be automatically created, and it will show Database connection successfully.

!Installation

success

Now your backend is running locally. You can access it via localhost: port .

!Installation

success

Now you need to setup your frontend. click here to open frontend installation process Frontend Installation Process